home *** CD-ROM | disk | FTP | other *** search
/ All for Cell Phones: Sony Ericsson / Sony-Ericsson 2004.iso / Java / Roger / Roger.jar / Location.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-08-31  |  487 b   |  19 lines

  1. class Location {
  2.    // $FF: renamed from: x int
  3.    int field_0;
  4.    // $FF: renamed from: y int
  5.    int field_1;
  6.  
  7.    Location() {
  8.    }
  9.  
  10.    Location(int x, int y) {
  11.       this.field_0 = x;
  12.       this.field_1 = y;
  13.    }
  14.  
  15.    void tick() {
  16.       this.field_1 += 4;
  17.    }
  18. }
  19.